com.supermap.ai
Class AISize
- java.lang.Object
-
- com.supermap.ai.AISize
-
public class AISize extends java.lang.Object
AI size parameter class. It is used for setting grid size in AI aggregation, transferring parameters size change listener, and so on
-
-
Constructor Summary
Constructors Constructor and Description AISize(int width, int height)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description int
getHeight()
Gets the widthint
getWidth()
Gets widthvoid
setHeight(int height)
Sets the heightvoid
setWidth(int width)
Sets the width
-
-
-
Constructor Detail
-
AISize
public AISize(int width, int height)
- Parameters:
width
- width.height
- height.
-
-
Method Detail
-
setWidth
public void setWidth(int width)
Sets the width- Parameters:
width
- width.
-
setHeight
public void setHeight(int height)
Sets the height- Parameters:
height
- height.
-
getWidth
public int getWidth()
Gets width- Returns:
- The width
-
getHeight
public int getHeight()
Gets the width- Returns:
- The height
-
-